home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / utility / tagitem.inc < prev    next >
Text File  |  1998-06-24  |  318b  |  22 lines

  1. include "inc/exec/types.inc";
  2.  
  3. struct TagItem is
  4.   ti_Tag:ulong;
  5.   ti_Data:ulong;
  6. ;
  7.  
  8. def TAG_DONE = (0);
  9. def TAG_END = (0);
  10. def TAG_IGNORE = (1);
  11. def TAG_MORE = (2);
  12. def TAG_SKIP = (3);
  13.  
  14. def TAG_USER = (1<<31);
  15.  
  16. def TAGFILTER_AND = 0;
  17. def TAGFILTER_NOT = 1;
  18.  
  19. def MAP_REMOVE_NOT_FOUND = 0;
  20. def MAP_KEEP_NOT_FOUND = 1;
  21.  
  22.